summaryrefslogtreecommitdiff
path: root/src/variable.h
blob: c9665f55146495445abae48c7eeff70c0b6ac492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifndef VARIABLE_H
#define VARIABLE_H

#include <stdint.h>

#include <bu/string.h>
#include <bu/hash.h>

class Variable
{
public:
	enum Type
	{
		Null,
		Int,
		Float,
		Bool,
		String,
		List,
		Dictionary
	};

public:
	Variable();
	Variable( Type eType );
	Variable( int64_t iValue );
	Variable( double fValue );
	Variable( bool bValue );
	Variable( const Bu::String &sValue );
	virtual ~Variable();

	Variable &operator=( const Variable &rhs );
	Variable &operator+=( const Variable &rhs );
	Variable &operator-=( const Variable &rhs );
	Variable &operator*=( const Variable &rhs );
	Variable &operator/=( const Variable &rhs );
	Variable &operator+( const Variable &rhs );
	Variable &operator-( const Variable &rhs );
	Variable &operator*( const Variable &rhs );
	Variable &operator/( const Variable &rhs );
	Variable &operator!=( const Variable &rhs );
	Variable &operator>( const Variable &rhs );
	Variable &operator<( const Variable &rhs );
	Variable &operator>=( const Variable &rhs );
	Variable &operator<=( const Variable &rhs );

private:
	Type eType;

	typedef Bu::List<Variable> VList;
	typedef Bu::Hash<Variable, Variable> VHash;

	union
	{
		int64_t iValue;
		double fValue;
		bool bValue;
		Bu::String *sValue;
		VList *lValue;
		VHash *hValue;
	};
};

#endif